home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / COMMUNIC / KERM313.ZIP / KERMIT.UPD < prev    next >
Text File  |  1993-07-12  |  57KB  |  1,261 lines

  1. File KERMIT.UPD (MSKERM.UPD)                          June 1993
  2.  
  3.  
  4.              SUPPLEMENT TO "USING MS-DOS KERMIT":
  5.          CHANGES AND NEW FEATURES SINCE VERSION 3.11
  6.  
  7.  
  8. Most recent update: Mon Jul 12 09:41:41 1993
  9.  
  10.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City of New
  11.   York.     The MS-DOS Kermit software may be reproduced and shared without
  12.   restriction as long as this copyright notice is retained, except that it may
  13.   not be licensed or sold for profit as a software product itself, and it may
  14.   not be included in or distributed with commercial products or otherwise
  15.   distributed by commercial concerns to their clients or customers without
  16.   written permission of the Office of Kermit Development and Distribution,
  17.   Columbia University.
  18.  
  19. MS-DOS Kermit is a product of Kermit Distribution, Columbia University Center
  20. for Computing Activities.  The principal author of the program is Professor
  21. Joe R. Doupnik of Utah State University, with help from other volunteer
  22. programmers all over the world.     The software is copyright by the Trustees of
  23. Columbia University in the City of New York, with portions of the source code
  24. also copyright by other institutions including Waterloo University (Ontario,
  25. Canada) and the (US) National Center for Supercomputing Applications (NCSA).
  26.  
  27. Kermit software is written by volunteer programmers as a public service, and
  28. is furnished without warranty of any kind.  Neither Columbia University, nor
  29. the individual authors, nor Digital Equipment Corporation, nor Digital Press,
  30. nor Data General Corporation, nor any other institution or individual that has
  31. contributed to the development and documentation warrant the software in any
  32. way.
  33.  
  34. See the file KERMIT.HLP (MSKERM.HLP) for contact information.
  35.  
  36.  
  37. UPDATES
  38.  
  39. MS-DOS Kermit 3.11 was released September, 1991, and is fully described in
  40. "Using MS-DOS Kermit", second edition. MS-DOS Kermit 3.13 has several features
  41. not described in the book.  This file describes these new features.
  42.  
  43. MS-DOS Kermit 3.12 was released in September, 1992.  It is a maintenance
  44. release, but with several new features added, including:
  45.  
  46.  . Networking and communications improvements, including ODI support.
  47.  . Japanese Kanji text-file transfer translation.
  48.  . Locking-shift protocol for file transfer.
  49.  . A new method for transferring files with IBM mainframes.
  50.  . Ability to SET PORT TCP/IP to non-TELNET ports.
  51.  
  52. MS-DOS Kermit 3.13 was released in July 1993 with the following new features:
  53.  
  54.  . A new faster method for transferring binary and precompressed files
  55.  . Larger packets and windows allowed, up to 9024 x 31.
  56.  . Switching among multiple simultaneous TCP/IP sessions
  57.  . Data General DASHER terminal emulation
  58.  . Graphics-mode support for 132-column operation on EGA and VGA video adapters
  59.  . Text-mode support for 132-column operation on ET4000 and other VESA adapters
  60.  . Horizontal scrolling
  61.  . Expanded-memory option for screen rollback and graphics image retention
  62.  . Hebrew character-set translation and Hebrew terminal emulation
  63.  . East European character-set translation
  64.  . Icelandic CP861 code page support
  65.  . Separate code page selection for terminal emulation and file transfer
  66.  . Compose-key sequences for entering accented characters
  67.  . New KERMIT PATH environment variable
  68.  . Support for Novell SLIP_PPP ODI driver and other networking improvements
  69.  . BOOTP improvements
  70.  . TELNET improvements, including option negotiation display
  71.  . DIAL-command support for additional modem types
  72.  
  73. UPDATE: KERMIT ENVIRONMENT VARIABLE
  74.  
  75.   The DOS environment variable KERMIT may be used for setting certain
  76.   parameters, even if Kermit doesn't read its initialization file.
  77.   Set this environment variable in your AUTOEXEC.BAT file:
  78.  
  79.     SET KERMIT=text
  80.  
  81.   <text> can be one or more MS-DOS Kermit startup parameters of the form
  82.   <name> <value>, separated by semicolons.  Startup parameters include:
  83.  
  84.     INPBUT <number>         (allocates storage for INPUT command buffer)
  85.     ROLLBACK <number>         (allocates storage for <number> rollback screens)
  86.     WIDTH <number>         (allocates sorage for given screen width, 80-207)
  87.     COMn <address> <irq>     (sets COM1, COM2, COM3, or COM4 address and IRQ)
  88.     PATH <path>             (where Kermit looks for TAKE files)
  89.  
  90.   PATH and WIDTH are new to version 3.13.  WIDTH defines the width of the
  91.   terminal-screen rollback memory.  If you want to roll back wide screens,
  92.   you should specify the width, e.g. 132.  AUTOEXEC.BAT Example:
  93.  
  94.     SET KERMIT=ROLLBACK 50;WIDTH 132;PATH C:\KERMIT  
  95.  
  96.   PATH affects the initialization-file search, the TAKE command, and
  97.   the IF INPATH command.
  98.  
  99. UPDATE: DIALING AND THE DIALING DIRECTORY
  100.  
  101. MS-DOS Kermit does not have a built-in DIAL command, but if you installed
  102. Kermit from the distribution disk according to instructions, you'll be able to
  103. use the DIAL macro defined in Kermit's initialization file, MSKERMIT.INI.
  104. DIAL uses two additional files: xxxxx.SCR, a script program for dialing your
  105. modem ("xxxxx" is HAYES, T3000, ROLM, etc, see below for a list), and
  106. DIALUPS.TXT, your dialing directory (see MODEMS.HLP).
  107.  
  108. If you do not have a modem for which a dialing script is provided, you can
  109. write a new script program for dialing, modelled after one of the other
  110. dialing scripts (see Chapter 14 of "Using MS-DOS Kermit) and set a DOS
  111. environment variable, MODEM, to be the name of your modem; the dialing script
  112. should have the same name, with a filetype of .SCR.  For example, for dialing
  113. an XYZV32 modem, put the following line your AUTOEXEC.BAT file:
  114.  
  115.   SET MODEM=XYZV32
  116.  
  117. and install a XYZV32.SCR file in the same directory as your MSKERMIT.INI file.
  118.  
  119. If you don't have a dialing script for your type of modem, you can also dial
  120. it "manually" in CONNECT mode.
  121.  
  122. To use a dialing directory, create a plain text file called DIALUPS.TXT.  The
  123. file contains one line per entry:
  124.  
  125.   name     number      speed       parity   comments
  126.  
  127. The "name" is the name you want to use for this entry in your DIAL commands.
  128. "number" is the telephone number; "speed" is the dialing speed in bits per
  129. second, "parity" is the parity to use (even, odd, mark, space, or none).  The
  130. name, number, speed, and parity are separated from each other by one or more
  131. spaces.     Any words after the parity are ignored, so you can use them for
  132. comments.  If trailing fields (speed, parity) are omitted, Kermit's current
  133. values are used (but then you can't have a comment).  If you want to tell
  134. Kermit explicitly to use its current value for speed or parity, use an equal
  135. sign (=).  Examples:
  136.  
  137.   sprintnet  7654321      2400     mark
  138.   oofanet    6543210      1200     odd    This entry has a comment.
  139.   tymnet     93,876-5432  2400     even    You can put punctuation in the phone #.
  140.   hometone   T5551212      1200     none    T in number forces tone dialing
  141.   homepulse  P5551212      1200     none    P in number forces pulse dialing
  142.   anyspeed   999-9999      =     none    Use current speed, whatever it is.
  143.   anyparity  888-8888      9600     =    Use current parity, whatever it is.
  144.   whocares   777-7777      =     =    Use current speed and parity.
  145.   defaults   987-6543
  146.  
  147. To use the dialing directory, just type DIAL followed by the name, spelled out
  148. in full (case doesn't matter), for example:
  149.  
  150.   MS-Kermit>dial tymnet
  151.  
  152. If you type a name or number that is not in the directory, Kermit dials exactly
  153. the characters you type, for example DIAL 5552370 dials the number 5552370.
  154. DIAL FRED (if FRED is not in the directory) tells Kermit to dial the letters
  155. FRED, which won't accomplish anything useful with most modems.
  156.  
  157. To view your dialing directory, type LIST.  To view particular entries in your
  158. dialing directory, type LIST XXX, where XXX is a sequence of characters that
  159. appears in the desired entries (usually the name).  In the LIST command, case
  160. is important because it uses the DOS FIND program to list the entries:
  161.  
  162.   MS-Kermit>list tymnet
  163.   tymnet     93,876-5432  2400     even    You can put punctuation in the phone #.
  164.  
  165. In your dialing directory, you can include spaces in the name or number by
  166. enclosing it in braces, as in these examples:
  167.  
  168.   {my computer}     555-4